home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / glisp.zoo / TST1.GL < prev    next >
Encoding:
Text File  |  1990-05-30  |  116 b   |  6 lines

  1. "Boucle recursive sur n"
  2. (setq n 100000)
  3. (de bcln () (if (= n 0) 'ok (setq n (- n 1)) (bcln)))
  4. "(bcln)"
  5. (bcln)
  6.